home *** CD-ROM | disk | FTP | other *** search
- _root.timer_sec--;
- if(_root.timer_sec == 1)
- {
- _root.timer_txt = _root.timer_sec + " second";
- }
- else if(_root.timer_sec == 0)
- {
- _root.correct = "OUT OF TIME";
- _root.timer_txt = "0 seconds";
- _parent.show_answer();
- stop();
- }
- else
- {
- _root.timer_txt = _root.timer_sec + " seconds";
- }
- gotoAndPlay(1);
- if(_root.totalAnswer == _root.toDisplay)
- {
- _root.aspetta.itsEnd = true;
- _root.aspetta.play();
- }
- else
- {
- _root.aspetta.play();
- }
- delete _root.myChoice;
- _root.qbar.nextFrame();
-